textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--backColour);
    color: var(--textColour);
    width: 98%;
}
.boxed { 
  position: relative;
  left: 4vw;
  width: 88vw;  
  background-color: var(--mainColour);
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 2vw;  
}
h4{
  margin: 0px;
  padding: 0px;
}

/* Customize the label (the container) */
.container {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-top:2px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--backColour);
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: var(--shadowBack);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  border: var(--mainColour);
  background-color: var(--mainColour);
  border-width: 0 3px 3px 0;
}
